< ul > Unordered List
The Unordered List tag allows you to make a list with bullet points.
Example
The code that made the list above looks like this:
< ul>
< li>Lebron James< /li>
< li>Kyrie Irving< /li>
< li>Stephen curry< /li>
< /ul>
I found this tag at w3schools.com
< span > Span
The HTML tag is an inline container that is used to group and apply styles or scripts to specific parts of text or elements within a document.
Example
BasketballThe code that made the text above looks like this:
< span style="color: green; text-decoration: underline; font-style: italic; font-weight: bold; font-size: 26px;"> Basketball < /span>
I found this tag at GeeksforGeeks
Video
The HTML < video > tag is used to embed video content on a web page. You can include controls so users can play, pause, and adjust the volume of the video.
Example
The code that made the video above looks like this:
< video width="320" height="240" controls> < source src="example_video.mp4" type="video/mp4"> < /video>I found this tag at GeeksforGeeks